Remove orphan jquery-form and toastr npm packages - #26002
Merged
Conversation
EngincanV
approved these changes
Aug 21, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the legacy, now-orphaned npm packs that previously shipped the toastr and jquery-form third-party libraries, and updates MVC/Razor Pages documentation to stop referencing those libraries.
Changes:
- Deleted
@abp/toastrnpm pack files (package metadata, resource mapping, README). - Deleted
@abp/jquery-formnpm pack files (including the vendored/minified plugin source). - Updated MVC/Razor Pages docs to remove Toastr/JQuery Form mentions and adjust bundle examples.
Reviewed changes
Copilot reviewed 9 out of 10 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| npm/packs/toastr/README.md | Removes the Toastr pack README as part of deprecating the pack. |
| npm/packs/toastr/package.json | Removes the @abp/toastr pack definition. |
| npm/packs/toastr/abp.resourcemapping.js | Removes resource mapping for toastr assets. |
| npm/packs/jquery-form/src/jquery.form.min.js | Removes the vendored/minified jquery-form plugin payload. |
| npm/packs/jquery-form/README.md | Removes the jQuery Form pack README as part of deprecating the pack. |
| npm/packs/jquery-form/package.json | Removes the @abp/jquery-form pack definition. |
| npm/packs/jquery-form/abp.resourcemapping.js | Removes resource mapping for jquery-form assets. |
| docs/en/framework/ui/mvc-razor-pages/theming.md | Removes Toastr/JQuery Form from the base library list and updates notification wording. |
| docs/en/framework/ui/mvc-razor-pages/overall.md | Updates library lists and removes Toastr from bundling examples. |
| docs/en/framework/ui/mvc-razor-pages/bundling-minification.md | Updates bundling examples to avoid referencing Toastr assets. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
46
to
50
| * [SweetAlert](https://sweetalert.js.org/) to show fancy alert message and confirmation dialogs. | ||
| * [Toastr](https://github.com/CodeSeven/toastr) to show toast notifications. | ||
| * [Lodash](https://lodash.com/) as a utility library. | ||
| * [Luxon](https://moment.github.io/luxon/) for date/time operations. | ||
| * [JQuery Form](https://github.com/jquery-form/form) for AJAX forms. | ||
| * [bootstrap-datepicker](https://github.com/uxsolutions/bootstrap-datepicker) to show date pickers. | ||
| * [Select2](https://select2.org/) for better select/combo boxes. |
|
|
||
| * [Tag Helpers](tag-helpers) makes it easy to generate the Bootstrap UIs. | ||
| * JavaScript [Message](javascript-api/message.md) and [Notification](javascript-api/notify.md) APIs provides abstractions to use the Sweetalert and Toastr. | ||
| * JavaScript [Message](javascript-api/message.md) and [Notification](javascript-api/notify.md) APIs provides abstractions to use the Sweetalert and the built-in toast implementation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolve #25968
Resolve #25966
Both libraries were already replaced (
abpAjaxFormusesFormData+$.ajax, notifications useabp-toast.js); this drops the unused@abp/jquery-formand@abp/toastrpackages and cleans the docs.